Labeled Tuple Elements
TypeScriptのTuple型
にlabelを付けられる
単に可読性があがるというだけ
https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-0.html#labeled-tuple-elements
例
code:ts
type Range =
start: number, end: number
;